home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / managers / ICursorManager.as < prev    next >
Text File  |  2014-03-27  |  1KB  |  38 lines

  1. package mx.managers
  2. {
  3.    public interface ICursorManager
  4.    {
  5.        
  6.       
  7.       function removeAllCursors() : void;
  8.       
  9.       function set currentCursorYOffset(param1:Number) : void;
  10.       
  11.       function removeBusyCursor() : void;
  12.       
  13.       function unRegisterToUseBusyCursor(param1:Object) : void;
  14.       
  15.       function hideCursor() : void;
  16.       
  17.       function get currentCursorID() : int;
  18.       
  19.       function registerToUseBusyCursor(param1:Object) : void;
  20.       
  21.       function setBusyCursor() : void;
  22.       
  23.       function showCursor() : void;
  24.       
  25.       function set currentCursorID(param1:int) : void;
  26.       
  27.       function setCursor(param1:Class, param2:int = 2, param3:Number = 0, param4:Number = 0) : int;
  28.       
  29.       function removeCursor(param1:int) : void;
  30.       
  31.       function get currentCursorXOffset() : Number;
  32.       
  33.       function get currentCursorYOffset() : Number;
  34.       
  35.       function set currentCursorXOffset(param1:Number) : void;
  36.    }
  37. }
  38.